/* Pricing Section Styles */
.pricing {
    padding: 7rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.pricing-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 87, 255, 0.15), rgba(0, 184, 255, 0.05));
    filter: blur(30px);
}

.pricing-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.pricing-circle:nth-child(2) {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    opacity: 0.7;
}

.pricing-container {
    position: relative;
    z-index: 1;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 87, 255, 0.3);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-table thead th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.2rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table tbody td {
    padding: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table tbody tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-card-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.pricing-card-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.pricing-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-card-cta {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-glossary {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
}

.pricing-glossary-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.glossary-table {
    width: 100%;
    border-collapse: collapse;
}

.glossary-table th, .glossary-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glossary-table th {
    color: var(--text-primary);
    font-weight: 600;
}

.glossary-table td {
    color: var(--text-secondary);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
}

.pricing-benefits {
    margin-top: 3rem;
}

.benefits-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-wrap: wrap;
    }
    
    .pricing-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .pricing-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card-price {
        font-size: 2rem;
    }
}

/* Light theme overrides */
html-light-theme body .pricing-tab,
body-light-theme .pricing-tab {
    background: rgba(255, 255, 255, 0.3) !important;
    color: #4d5a7a !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

html-light-theme body .pricing-tab.active,
body-light-theme .pricing-tab.active {
    background: var(--accent-color) !important;
    color: white !important;
}

html-light-theme body .pricing-card,
body-light-theme .pricing-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

html-light-theme body .pricing-glossary,
body-light-theme .pricing-glossary {
    background: rgba(255, 255, 255, 0.8) !important;
}

html-light-theme body .pricing-table thead th,
body-light-theme .pricing-table thead th {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #202842 !important;
}

html-light-theme body .pricing-table tbody td,
body-light-theme .pricing-table tbody td {
    background: rgba(255, 255, 255, 0.7) !important;
    color: #4d5a7a !important;
}

html-light-theme body .pricing-table tbody tr:nth-child(odd) td,
body-light-theme .pricing-table tbody tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.9) !important;
}
